From news-rocq.inria.fr!jussieu.fr!oleane!tank.news.pipex.net!pipex!howland.reston.ans.net!newsfeed.internetmci.com!in2.uu.net!rice!usenet Wed Jan 24 20:09:43 1996 Article: 3649 of rec.games.corewar Path: news-rocq.inria.fr!jussieu.fr!oleane!tank.news.pipex.net!pipex!howland.reston.ans.net!newsfeed.internetmci.com!in2.uu.net!rice!usenet From: Kurt Franke Newsgroups: rec.games.corewar Subject: Re: Program "0 for 100" (length 6) by "John K W" Date: Wed, 24 Jan 1996 11:30:14 -0600 Organization: Rice University, Houston, Texas Lines: 43 Message-ID: <31066CA6.51D0566B@rice.edu> References: <4e3dgi$5cq@geraldo.cc.utexas.edu> NNTP-Posting-Host: protector.lovett.rice.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 2.0b5 (X11; I; Linux 1.2.1 i486) Greetings.. Steven Morrell will probably point this out as well... I believe the lose-all-battles strategy has already been written. This is from Steve's Page: ;name Scorekeeper ;author Steven Morrell ;strategy P-space marvel ldp #0,#0 jmz -2,-1 nop 0,0 end ---------------- And running it we see: protector:~/redcode/warriors$ pmars -r 500 scorekeeper.red scorekeeper.red -b Scorekeeper by Steven Morrell scores 0 Scorekeeper by Steven Morrell scores 1500 Results: 0 500 0 ---------------- But while we go for records, here is my two-liner: ;name Loser ;author Kurt Franke ;strategy Lose always ldp #0,#0 jmn -1,>-1 end - Kurt